home *** CD-ROM | disk | FTP | other *** search
/ PC Advisor 2004 February / PC Advisor February 2004.iso / trial / Dolphin / 044UD3521.exe / 3rd party drivers / ALVA Drivers / Drivers / ABTPar.inf < prev    next >
Windows Setup INFormation  |  2002-06-25  |  3KB  |  106 lines

  1. ; Installation inf for ALVA Delphi and ABT3 braille display series parallel
  2. ; driver
  3. ;
  4. ; (c) Copyright 2001 ALVA BV
  5. ;
  6.  
  7. ;--------- Version Section ---------------------------------------------------
  8.  
  9. [Version]
  10. Signature="$CHICAGO$"
  11. Provider=%ProviderName%
  12.  
  13. Class     = ABTPar_CLASS_GUID
  14. ClassGUID = {23952810-6f12-4788-bcac-c3de91b25296}
  15.  
  16. DriverVer = 07/17/2001,1.0.0.0
  17.  
  18. ;--------- SourceDiskNames and SourceDiskFiles Section -----------------------
  19.  
  20. [SourceDisksNames]
  21. 1 = "ABT Parallel Driver Installation Disk","",0
  22.  
  23. [SourceDisksFiles]
  24. ABTPar.sys = 1
  25.  
  26. ;--------- ClassInstall/ClassInstall32 Section -------------------------------
  27.  
  28. ; Not necessary if using a standard class
  29.  
  30. ; 9X Style
  31. [ClassInstall]
  32. Addreg=Class_AddReg
  33.  
  34. ; NT Style
  35. [ClassInstall32]
  36. Addreg=Class_AddReg
  37.  
  38. [Class_AddReg]
  39. HKR,,,,%DeviceClassName%
  40. HKR,,Icon,,"-19"
  41.  
  42. ;--------- DestinationDirs Section -------------------------------------------
  43.  
  44. [DestinationDirs]
  45. ABTPar_Files = 10,System32\Drivers
  46.  
  47. ;--------- Manufacturer and Models Sections ----------------------------------
  48.  
  49. [Manufacturer]
  50. %MfgName%=ALVA-BV
  51.  
  52. [ALVA-BV]
  53. %DeviceDesc%=ABTPar_DDI, ALVA_Parallel
  54.  
  55. ;---------- DDInstall Sections -----------------------------------------------
  56. ; --------- Windows 9X -----------------
  57.  
  58. ; Experimentation has shown that DDInstall root names greater than 19 characters
  59. ; cause problems in Windows 98
  60.  
  61. [ABTPar_DDI]
  62. ;Cannot copy file, WIN98 keeps on asking for the .sys file
  63. ;with a prompt for exactly the correct directory
  64. ;CopyFiles=ABTPar_Files
  65. AddReg=ABTPar_9X_AddReg
  66.  
  67. [ABTPar_9X_AddReg]
  68. HKR,,DevLoader,,*ntkern
  69. HKR,,NTMPDriver,,ABTPar.sys
  70. HKR, "Parameters", "BreakOnEntry", 0x00010001, 0
  71.  
  72. ; --------- Windows NT -----------------
  73.  
  74. [ABTPar_DDI.NT]
  75. CopyFiles=ABTPar_Files
  76. AddReg=ABTPar_NT_AddReg
  77.  
  78. [ABTPar_DDI.NT.Services]
  79. Addservice = ABTPar, 0x00000002, ABTPar_AddService
  80.  
  81. [ABTPar_AddService]
  82. DisplayName    = %SvcDesc%
  83. ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
  84. StartType      = 3                  ; SERVICE_DEMAND_START
  85. ErrorControl   = 1                  ; SERVICE_ERROR_NORMAL
  86. ServiceBinary  = %10%\System32\Drivers\ABTPar.sys
  87.  
  88. [ABTPar_NT_AddReg]
  89. HKLM, "System\CurrentControlSet\Services\ABTPar\Parameters",\
  90.     "BreakOnEntry", 0x00010001, 0
  91.  
  92.  
  93. ; --------- Files (common) -------------
  94.  
  95. [ABTPar_Files]
  96. ABTPar.sys
  97.  
  98. ;--------- Strings Section ---------------------------------------------------
  99.  
  100. [Strings]
  101. ProviderName   = "ALVA B.V."
  102. MfgName        = "ALVA B.V."
  103. DeviceDesc     = "ALVA Braille Display"
  104. DeviceClassName= "ALVA Parallel Braille Driver Class"
  105. SvcDesc        = "ALVA Parallel Braille Driver"
  106.